home *** CD-ROM | disk | FTP | other *** search
- ;-------------------------routine begins--------------------------+
- ; ROUTINE FOR STANDARD INPUT WITH ECHO
- ;
- stdin proc far
- mov ah,1 ; standard input
- int 21h ; dos call
- ret
- stdin endp
- ;-------------------------routine ends---------------------------+